svn path=/trunk/; revision=22240
+2009-01-27 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/gtktogglebutton.c: Don't chain the clicked handler
+ up unconditionally.
+
2009-01-27 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version
g_object_notify (G_OBJECT (toggle_button), "active");
- GTK_BUTTON_CLASS (gtk_toggle_button_parent_class)->clicked (button);
+ if (GTK_BUTTON_CLASS (gtk_toggle_button_parent_class)->clicked)
+ GTK_BUTTON_CLASS (gtk_toggle_button_parent_class)->clicked (button);
}
static void